home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1995 April / Internet Tools.iso / osi / isode / dosisode / DOSISODE80.ZIP / ISODE8.WRK / UNIX / LIB / CUR / WPRINTW.C < prev   
Encoding:
C/C++ Source or Header  |  1992-03-31  |  224 b   |  11 lines

  1. #include <curses.h>
  2.  
  3. int wprintw(here,fmt,a,b,c,d,e,f,g,h,i,j)
  4. WINDOW *here;
  5. char *fmt,*a,*b,*c,*d,*e,*f,*g,*h,*i,*j;
  6. {
  7.     char buffer[128];
  8.     sprintf(buffer,fmt,a,b,c,d,e,f,g,h,i,j);
  9.     return(waddstr(here,buffer));
  10. }
  11.